home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / tkern10.zip / INCLUDE\SYS\TKPROTO.H < prev    next >
Text File  |  1994-05-16  |  302b  |  13 lines

  1. /* BC4 doesn't appear to have a manifest constant to tell us if
  2.  * we are in K&R mode (hence no prototypes). If you want to use K&R
  3.  * mode, define __NOANSI__ on the command line.
  4.  */
  5.  
  6. #ifndef __TKPROTO
  7. #ifndef __NOANSI__
  8. #define __TKPROTO(x)    x
  9. #else
  10. #define    __TKPROTO(x)    ()
  11. #endif
  12. #endif
  13.